home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / screen.postrm < prev    next >
Text File  |  2008-06-13  |  341b  |  18 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. if [ "$1" = purge ] || [ "$1" = remove ]; then
  5.   rm -rf /var/run/screen
  6. fi
  7.  
  8. if [ "$1" = disappear ]; then
  9.   /usr/sbin/remove-shell /usr/bin/screen || true
  10. fi
  11.  
  12. # Automatically added by dh_installinit
  13. if [ "$1" = "purge" ] ; then
  14.     update-rc.d screen-cleanup remove >/dev/null || exit $?
  15. fi
  16. # End automatically added section
  17.  
  18.